Fractale Tree  0.5
Plot Tree Fractale
qwidget_config.h
Go to the documentation of this file.
1 #ifndef QWIDGET_CONFIG_H
2 #define QWIDGET_CONFIG_H
3 
9 #include <QMainWindow>
10 #include <QObject>
11 #include <QWidget>
12 #include <QGridLayout>
13 #include <QSpinBox>
14 #include <QDoubleSpinBox>
15 #include <QLabel>
16 #include <QGroupBox>
22 class QWidget_Config : public QWidget
23 {
24  Q_OBJECT
25 public:
26  explicit QWidget_Config(QWidget *parent = 0);
27 
28  int Get_Niveau();
29  double Get_SizePen();
30  double Get_Lenght();
31 
32 
33  void Set_Niveau(int niveau);
34  void Set_SizePen(double sizePen);
35  void Set_Lenght(double lenght);
36 
37 
38 
39 private :
40  QGridLayout *layout;
41 
42  QSpinBox *SpinBox_niveau;
43  QDoubleSpinBox *DoubleSpinBox_sizePen;
44  QDoubleSpinBox *DoubleSpinBox_lenght;
45 
46 
47  QLabel *Label_niveau;
48  QLabel *Label_sizePen;
49  QLabel *Label_lenght;
50 
51 
52 signals:
53  void Value_changed();
54 public slots:
55 };
56 
57 #endif // QWIDGET_CONFIG_H
void Set_Niveau(int niveau)
QSpinBox * SpinBox_niveau
QDoubleSpinBox * DoubleSpinBox_sizePen
double Get_SizePen()
QWidget_Config(QWidget *parent=0)
QDoubleSpinBox * DoubleSpinBox_lenght
void Set_SizePen(double sizePen)
QLabel * Label_lenght
void Set_Lenght(double lenght)
void Value_changed()
QLabel * Label_sizePen
Widget de configuration d&#39;affichage des niveaus des branches.
QGridLayout * layout
QLabel * Label_niveau